home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Developer CD 2.1
/
Amiga Developer CD v2.1.iso
/
Contributions
/
Interworks
/
Networking
/
INet-225
/
include
/
pwd.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1996-04-08
|
331 b
|
26 lines
/*
** Simple passwd entry for the Amiga.
*/
#ifndef PWD_H
#define PWD_H
#ifndef SYS_TYPES_H
#include <sys/types.h>
#endif
struct passwd {
char *pw_name;
char *pw_dir;
char *pw_passwd;
char *pw_gecos;
uid_t pw_uid;
gid_t pw_gid;
char *pw_shell; /* unused */
char *pw_comment;
};
#define PWFILE "inet:db/passwd"
#endif